home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Modules / ctl / ctlsupport.py < prev   
Text File  |  1996-04-12  |  3KB  |  96 lines

  1. # This script generates a Python interface for an Apple Macintosh Manager.
  2. # It uses the "bgen" package to generate C code.
  3. # The function specifications are generated by scanning the mamager's header file,
  4. # using the "scantools" package (customized for this particular manager).
  5.  
  6. import string
  7.  
  8. import addpack
  9. addpack.addpack(':Tools:bgen:bgen')
  10.  
  11. # Declarations that change for each manager
  12. MACHEADERFILE = 'Controls.h'        # The Apple header file
  13. MODNAME = 'Ctl'                # The name of the module
  14. OBJECTNAME = 'Control'            # The basic name of the objects used here
  15.  
  16. # The following is *usually* unchanged but may still require tuning
  17. MODPREFIX = MODNAME            # The prefix for module-wide routines
  18. OBJECTTYPE = OBJECTNAME + 'Handle'    # The C type used to represent them
  19. OBJECTPREFIX = MODPREFIX + 'Obj'    # The prefix for object methods
  20. INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
  21. OUTPUTFILE = MODNAME + "module.c"    # The file generated by this program
  22.  
  23. from macsupport import *
  24.  
  25. # Create the type objects
  26.  
  27. ControlHandle = OpaqueByValueType(OBJECTTYPE, OBJECTPREFIX)
  28. ControlRef = ControlHandle
  29. ExistingControlHandle = OpaqueByValueType(OBJECTTYPE, "CtlObj_WhichControl", "BUG")
  30.  
  31. RgnHandle = OpaqueByValueType("RgnHandle", "ResObj")
  32. ControlPartCode = Type("ControlPartCode", "h")
  33. DragConstraint = Type("DragConstraint", "h")
  34.  
  35. includestuff = includestuff + """
  36. #include <%s>""" % MACHEADERFILE + """
  37.  
  38. #define resNotFound -192 /* Can't include <Errors.h> because of Python's "errors.h" */
  39.  
  40. extern PyObject *CtlObj_WhichControl(ControlHandle); /* Forward */
  41.  
  42. #ifdef THINK_C
  43. #define  ControlActionUPP ProcPtr
  44. #endif
  45. """
  46.  
  47. finalstuff = finalstuff + """
  48. PyObject *
  49. CtlObj_WhichControl(ControlHandle c)
  50. {
  51.     PyObject *it;
  52.     
  53.     /* XXX What if we find a control belonging to some other package? */
  54.     if (c == NULL)
  55.         it = NULL;
  56.     else
  57.         it = (PyObject *) GetCRefCon(c);
  58.     if (it == NULL || ((ControlObject *)it)->ob_itself != c)
  59.         it = Py_None;
  60.     Py_INCREF(it);
  61.     return it;
  62. }
  63. """
  64.  
  65. class MyObjectDefinition(GlobalObjectDefinition):
  66.     def outputCheckNewArg(self):
  67.         Output("if (itself == NULL) return PyMac_Error(resNotFound);")
  68.     def outputInitStructMembers(self):
  69.         GlobalObjectDefinition.outputInitStructMembers(self)
  70.         Output("SetCRefCon(itself, (long)it);")
  71.     def outputCleanupStructMembers(self):
  72.         Output("SetCRefCon(self->ob_itself, (long)0); /* Make it forget about us */")
  73.         
  74. # Create the generator groups and link them
  75. module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
  76. object = MyObjectDefinition(OBJECTNAME, OBJECTPREFIX, OBJECTTYPE)
  77. module.addobject(object)
  78.  
  79. # Create the generator classes used to populate the lists
  80. Function = OSErrFunctionGenerator
  81. Method = OSErrMethodGenerator
  82.  
  83. # Create and populate the lists
  84. functions = []
  85. methods = []
  86. execfile(INPUTFILE)
  87. execfile('ctledit.py')
  88.  
  89. # add the populated lists to the generator groups
  90. for f in functions: module.add(f)
  91. for f in methods: object.add(f)
  92.  
  93. # generate output (open the output file as late as possible)
  94. SetOutputFileName(OUTPUTFILE)
  95. module.generate()
  96.